3D Graphics Programming with QuickDraw 3D 1.5.4
Previous | QD3D Book | Overview | Chapter Contents | Next |
The Q3ViewerGetState function returns a long integer that encodes information about the current state of a viewer object. Bits of the returned long integer are addressed using these viewer state flags:
All flags with values greater than or equal to kQ3ViewerHasUndo were introduced in version 1.1 of the 3D Viewer.
enum {
kQ3ViewerEmpty = 0,
kQ3ViewerHasModel = 1<<0,
kQ3ViewerHasUndo = 1<<1
};
Previous | QD3D Book | Overview | Chapter Contents | Next |